home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 2
/
Apprentice-Release2.iso
/
Source Code
/
C
/
Snippets
/
Threads Interface
/
CCooperativeThread.h
< prev
next >
Encoding:
Amiga (detected)
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-04-03
|
332 b
|
16 lines
|
[
TEXT/KAHL
]
/***
* CCooperativeThead.h
*
* Impelement a cooperative thread. One that must give up the CPU of its own accord.
* Copyright © Gordon Watts 1994 (gwatts@fnal.fnal.gov)
*
***/
#pragma once
#include "CThread.h"
class CCooperativeThread : public CThread {
public:
void Start (void); // Start the thread on its way
};